This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Martha Desboositheroden 5.Jan.04 03:50 PM a Web browser Domino Designer6.0.2 CF2Windows 2000
I have two dialog list fields.
One has 3 values to pick from (no multiples). I want the second field to present different selections based on the first field's choice.
I'm using keywords and @if in the formula for the second field, but I don't really think that that is the problem.
Here is the @if formula code anyway:
@If(@Contains(Field1;"choiceA");
@DbLookup("" : "No Cache";Keyword_ID; "V_Keywords"; "choiceA Elements"; "Contents");@Contains(Field1;"choiceB");
@DbLookup("" : "No Cache";Keyword_ID; "V_Keywords"; "choiceB Elements"; "Contents");@DbLookup("" : "No Cache";Keyword_ID; "V_Keywords"; "choiceC Elements"; "Contents"))
The fields have to be close together on the form with and no saving will take place between picking the picking the first field and then going to the second field.
It works the first time I pick something from field 1, however, if I change the value, the field 2 lists do not change. I have tried refreshing the document upon exiting the first field and that also does not seem to do the trick.